:root {
    --main-color: #4caf50;
    --bg-color: #ffffff; 
    --fallback-bg-color: #191a19;
}

/* Importing Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* General Body Styles */
*{
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    list-style: none;
    text-decoration: none;
    border: none;
    outline: none;
}

body {
    font-family: "Poppins", sans-serif;
    display: flex;
    flex-direction: column;
    background: var(--fallback-bg-color); 
    background-image: url('./soccer-stadium-full-people_Nero_AI_Compress.jpg'); 
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    animation: backgroundSlide 150s infinite;
    position: relative;
    will-change: background-image;
    transition: background 1s ease-in-out;
    /* transition: background-image 3s ease-in-out; */
    overflow: auto;
}
/* Preloading background images */
body:before {
    content: '';
    position: absolute;
    top: -9999px;
    left: -9999px;
    width: 1px;
    height: 1px;
    background: url('/soccer-stadium-full-people_Nero_AI_Compress.jpg'),
                url('/ryan-OywyPkrDEvg-unsplash_Nero_AI_Compress.jpg'),
                url('/filip-mroz--WgTWXb4nh4-unsplash.jpg'),
                url('/empty-boxing-ring-with-spotlights-stadium_1222783-23342.jpg'),
                url('/william-dehoogh-BL9zi3MtORo-unsplash.jpg');
}

/* Keyframes for sliding animation */
@keyframes backgroundSlide {
        0% { background-image: url('/soccer-stadium-full-people_Nero_AI_Compress.jpg'); }
        20% { background-image: url('/ryan-OywyPkrDEvg-unsplash_Nero_AI_Compress.jpg'); }
        40% { background-image: url('/filip-mroz--WgTWXb4nh4-unsplash.jpg'); }
        60% { background-image: url('/empty-boxing-ring-with-spotlights-stadium_1222783-23342.jpg'); }
        80% { background-image: url('/william-dehoogh-BL9zi3MtORo-unsplash.jpg'); } 
        100% { background-image: url('/soccer-stadium-full-people_Nero_AI_Compress.jpg'); } 
}

header{
    display: block;
    width: 100%;
    background: #191a19;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    box-shadow: 4px 4px 20px rgb(15 54 55 / 10%);
}

/* nav Starts */
.nav {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 35px;
    background: linear-gradient(135deg, #191a19, rgba(46, 204, 113, 0));
    width: 100%;
    margin-top: 20px;
}

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--main-color);
    text-transform: uppercase;
    display: flex; 
    align-items: center;
}

.logo-image {
    width: 40px; 
    height: auto; 
    margin-right: 10px; 
}

.logo span{
    color: var(--main-color);
    font-size: 25px;
}

.navbar {
    display: flex;
    column-gap: 0.5rem;
}

/* Navbar links styling */
.navbar a {
    padding: 8px 17px;
    color: var(--bg-color);
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
}

/* Dropdown menu styling */
.navbar a:hover,
.navbar .active {
    background: #333;
    color: var(--bg-color);
    transition: 0.2s all linear;
    box-shadow: 4px 4px 20px rgb(15 54 55 / 20%);
    border-radius: 10px;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none; 
    position: absolute;
    background-color: #191a19; 
    padding: 10px;
    list-style: none;
    top: 100%;
    left: 0;
    z-index: 1;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    transform: translateY(-10px); 
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: block; 
    opacity: 1; 
    transform: translateY(0); 
}

/* Dropdown links styling */
.dropdown-menu li a {
    color: white; 
    padding: 8px 15px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease;
}

/* Dropdown link hover state */
.dropdown-menu li a:hover {
    background-color: #333; 
    color: var(--bg-color);
}

#menu {
    display: none;
}
#menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;    
}
.navbar .nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.navbar .nav-links li a:hover {
    color: #5c6a5e; 
}

/* Marquee */
.marquee {
    position: relative;
    z-index: 100;
    background-color: #333;
    color: #fff;
    padding: 3px;
    white-space: nowrap;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-size: 16px;
}

.marquee p {
    display: inline-block; 
    animation: marquee 30s linear infinite; 
    padding-right: 100px;
    white-space: nowrap;
}

.marquee p::after {
    content: "TOKEN DROP : 1 Nov | $LOCKR is the TICKR ";
    padding-left: 200px;
}

.marquee p::before {
    content: "TOKEN DROP : 1 Nov | $LOCKR is the TICKR";
    padding-right: 200px;
}
@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* General styles for docs section */
.docs-section {
    margin-top: 150px;
    padding: 30px;
    text-align: left;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin: 50px auto;
    max-width: 900px;
}

.docs-section h2{
    color:green;
}

.docs-section h3,
.docs-section h4 {
    color: #ffffff;
}

.docs-section p,
.docs-section ul,
.docs-section ol {
    color: #ffffff;
    line-height: 1.6;
}

/* Hidden code positioning */
.hidden-code {
    position: absolute;
    top: 80px;
    left: calc(100% - 400px);
    opacity: 0; 
    color: #ffffff; 
    font-size: 0.8rem; 
    pointer-events: none; 
    transition: opacity 0.2s ease;
}

/* Make the hidden code visible when highlighted */
::selection .hidden-code {
    opacity: 0.6; 
}

/* Reveal when hovering over the parent <p> element */
p:hover .hidden-code {
    opacity: 0.3;
}

/* General styles for community section */
.community-section {
    margin-top: 150px; 
    padding: 30px;
    text-align: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin: 50px auto;
    max-width: 900px;
}


/* Social Media Icons */
.social-media-icons {
    margin-top: 30px;
}

.social-media-icons a {
    margin: 0 15px;
    font-size: 2rem;
    color: white;
    transition: color 0.3s ease;
}

.social-media-icons a:hover {
    color: var(--main-color); 
}

.para {
    font-size: 2rem;
}

/* Presale*/
/* Whitelist Form Container */
.whitelist-form-container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 100%;
    text-align: center;
    margin: 0 auto; 
}

.whitelist-form-container h2 {
    font-size: 2rem;
    color: #4caf50;
    margin-bottom: 20px;
}

/* Form Styling */
form {
    display: flex;
    flex-direction: column;
}

label {
    text-align: left;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 5px;
}

input[type="text"], input[type="email"] {
    padding: 12px 15px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
}

input[type="text"]::placeholder, input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

input[type="submit"] {
    padding: 12px;
    background-color: #4caf50;
    color: #fff;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #3e8e41;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .whitelist-form-container {
        padding: 30px;
    }

    .whitelist-form-container h2 {
        font-size: 1.8rem;
    }

    input[type="text"], input[type="submit"] {
        font-size: 0.9rem;
    }
}

/* General style for contact */

.contact-section {
    margin-top: 150px; 
    padding: 30px;
    text-align: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin: 50px auto;
    max-width: 900px;
}

.container form {
    width: 100%; 
    max-width: 670px; 
    display: flex;
    flex-direction: column; 
    align-items: center; 
    flex-wrap: wrap;
    margin: 0 auto; 
}

.container form h1 {
    color: #fff;
    font-weight: 500;
    margin-top: 20px;
    width: 100%; 
    text-align: center;
}

.container form input,
.container form textarea {
    width: 90%; 
    max-width: 600px; 
    height: 40px; 
    padding-left: 10px;
    outline: none;
    border: none;
    font-size: 15px;
    margin-bottom: 10px;
    background: none;
    border-bottom: 2px solid #fff;
}

.container form input::placeholder{
    color: #fff;
}

.container form #lastName,
.container form #mobile {
    margin-left: 0;
}

.container form h4 {
    color: #fff;
    font-weight: 300;
    margin-top: 20px;
    width: 100%;
}

.container form textarea {
    background: none;
    border: none;
    border-bottom: 2px solid #fff;
    color: #fff;
    font-weight: 200;
    font-size: 15px;
    padding: 10px;
    outline: none;
    min-height: 80px; 
    max-width: 100%; 
}

/* Custom scrollbar */
textarea::-webkit-scrollbar{
    width: 1em;
}

textarea::-webkit-scrollbar-thumb{
    background-color: rgba(194,194,194,0.713);
}

.container form #button {
    border: none;
    background: #fff;
    border-radius: 5px;
    margin-top: 20px; 
    font-weight: 600;
    font-size: 20px;
    color: #333;
    width: 100%; 
    max-width: 150px; 
    padding: 10px; 
    transition: 0.3s;
}

.container form #button:hover {
    opacity: 0.9;
    cursor: pointer; 
}

/* Headers */
h1, h2 {
    text-align: center;
    margin-bottom: 30px;
}

h1 {
    font-size: 2.5rem;
    color: var(--main-color);
}

h2 {
    font-size: 1.75rem;
    color: var(--main-color);
}

/* Table of Contents Styling */
.toc {
    margin-bottom: 40px;
}

.toc li {
    margin-bottom: 15px;
}

.toc a {
    text-decoration: none;
    color: var(--main-color);
    font-weight: 500;
    transition: color 0.3s;
}

.toc a:hover {
    color: var(--main-color);
}

article {
    margin-bottom: 60px;
}

article h3 {
    color: var(--main-color);
    margin-bottom: 20px;
}

article p, article ul {
    line-height: 1.7;
}

ul {
    list-style: disc;
    margin-left: 40px;
}

/* Home Container with Glassmorphism */
.home {
    min-height: 640px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    width: 80%;
    margin: 0 auto;
    background: linear-gradient(
        to right bottom, 
        rgba(255,255,255,0.5),
        rgba(255,255,255,0.1)
    );
    border-radius: 1rem;
    backdrop-filter: blur(2rem);
    padding: 2rem;
}


.main-box{
    background: white;
    width: 80%;
    min-height: 80vh;
    background: linear-gradient(
        to right bottom, 
        rgba(255,255,255,0.5),
        rgba(255,255,255,0.1)
    );
    border-radius: 1rem;
    backdrop-filter: blur(2rem);
    z-index: 4;
}
.home-img {
    flex: 1 1 17rem;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.home-img img {
    display: block; 
    width: 100%; 
    height: auto; 
    transition: transform 0.3s ease; 
}
.home-img:hover img {
    transform: scale(1.05); 
}
.home-text{
    flex: 1 1 17rem;
    font-weight: 400;
}

.home-text h1{
    font-size: 1.9rem;
    text-align: center;
}
.home-text p{
    font-size: 0.938rem;
    font-weight: 300;
    margin: 0.5rem 0 1rem;
    text-align: justify;
}

.centered {
    text-align: center;
}
.button-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.btn {
    padding: 12px 24px;
    background: var(--main-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.btn:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.15);
}
.heading {
    text-align: center;
    margin-bottom: 2rem;
}
.heading h2{
    font-size: 1.7rem;
}
.heading p{
    font-size: 0.938rem;
    font-weight: 300;
}

/* Services Section */
.services {
    padding: 60px 20px;
    background-color: #000000;
}

.services h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 40px;
    color: var(--main-color);
}

.service-items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.service-item {
    width: 30%;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-item i {
    font-size: 48px;
    color: var(--main-color);
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-item p {
    font-size: 16px;
    color: #ffffff;
}
/* Card Style */
.card {  
    width: 100%;  
    height: 500px;  
    border-radius: 20px;  
    overflow: hidden;  
    border: 8px solid #ffffff; 
    position: relative;  
}  

.card-img {  
    width: 100%;  
    height: 100%;  
    object-fit: cover;  
    border-radius: 15px;  
    position: absolute;  
    top: 0;  
    left: 0;  
    z-index: 1;  
}  

.card-body {  
    width: 100%;  
    height: 100%;  
    position: absolute;  
    background: rgba(31, 61, 71, 0.8); 
    backdrop-filter: blur(5px);  
    border-radius: 15px;  
    color: #fff;  
    padding: 30px;  
    display: flex;  
    flex-direction: column;  
    justify-content: center;  
    align-items: center;  
    text-align: center; 
    animation: slide 15s ease-in-out infinite;  
    z-index: 2;   
}  

@keyframes slide {  
    0%, 100% {  
        right: -100%;  
    }  
    10%, 90% {  
        right: 0; 
    } 
}  

.card-sub-title {  
    text-transform: capitalize;  
    font-size: 28px;  
    font-weight: 600;  
    margin-bottom: 20px;  
}  

.card-info {  
    font-size: 18px;  
    line-height: 1.8em;  
    font-weight: 400;  
}  

.card-btn {  
    color: #1f3d47;  
    background: #8fabba;  
    padding: 10px 20px;  
    width: 120px;  
    border-radius: 5px;  
    text-transform: capitalize;  
    border: none;  
    outline: none;  
    font-weight: 500;  
    cursor: pointer;  
}
/* Service section ends*/
/* Audio Button */
.fa.fa-music {
    position: fixed;
    right: 15px;
    bottom: 15px;
    width: 40px;
    height: 40px;
    border: 1px solid #4caf50;
    color: #4caf50;
    z-index: 1000;
    cursor: pointer;
    line-height: 38px;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0 0 2px #444444;
    text-shadow: 0 0 1px #444444;
    transition: opacity 0.3s ease; 
    opacity: 0.8; 
}

/* Style for play state */
.fa.fa-music:before {
    content: '\f028'; 
    font-family: 'Font Awesome 5 Free';
    font-weight: 900; 
}

/* Style for pause state */
.fa.fa-music.pause:before {
    content: '\f28b'; 
    font-family: 'Font Awesome 5 Free'; 
    font-weight: 900; 
}

/* Add hover effect */
.fa.fa-music:hover {
    opacity: 1; 
}


/* Footer Section */
.footer {
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    background: url('./soccer-stadium-full-people.jpg'); 
    background-size: cover; 
    background-position: center; 
    padding: 20px 10px; 
    color: rgb(255, 255, 255); 
    margin-top: auto; 
}

.footer .contain {
    width: 100%; 
    max-width: 1200px; 
}

.footer .row {
    display: flex; 
    justify-content: space-between; 
    align-items: flex-start; 
    width: 100%; 
    flex-wrap: wrap; 
}

.footer .footer-col {
    flex: 1; 
    min-width: 200px; 
    margin: 5px; 
    text-align: center; 
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.footer .footer-col h4 {
    margin-bottom: 10px; 
    position: relative;
    text-transform: capitalize;
}

.footer .footer-col h4::after {
    content: ''; 
    position: absolute; 
    left: 50%; 
    transform: translateX(-50%); 
    bottom: -5px; 
    width: 30px; 
    height: 2px; 
    background-color: #00ff00; 
}

.footer .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-col ul li {
    margin-bottom: 5px;
}

.footer .footer-col ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer .footer-col ul li a:hover {
    color: #00ff00;
}

.footer .social-links {
    margin-top: 10px;
    display: flex;
    justify-content: center
}

.footer .social-links a {
    margin-right: 10px; 
    color: white; 
    font-size: 16px; 
    transition: color 0.3s ease; 
}

.footer .social-links a:last-child {
    margin-right: 0; 
}

.footer .social-links a:hover {
    color: #00ff00; 
}

.newsletter-form {
    display: flex; 
    margin-top: 5px; 
    justify-content: center; 
}

.newsletter-form input[type="email"] {
    padding: 8px; 
    border: none;
    border-radius: 4px; 
    flex: 1; 
}

.newsletter-form button {
    padding: 8px 12px;
    background-color: #00ff00;
    border: none;
    border-radius: 4px;
    color: white;
    cursor: pointer; 
    margin-left: 5px; 
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #008000;
}

.footer p {
    text-align: center;
    margin-top: 10px;
}
/* Scrool bar start*/

::-webkit-scrollbar {
    width: 12px; 
}

::-webkit-scrollbar-track {
    background: #191a19; 
    border-radius: 20px;
}

::-webkit-scrollbar-thumb {
    background: #4caf50; 
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3b8a3a;
}

/* For Firefox */
* {
    scrollbar-width: thin; 
    scrollbar-color: #4caf50 #191a19; 
}

/* scrollbar styling ends*/
/* General Responsive Styling */

@media (max-width: 1200px) {
    .home {
        width: 90%;
    }

    .navbar a {
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .navbar {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: #191a19;
        border-radius: 5px;
        width: 200px;
        padding: 15px;
    }

    #menu-icon {
        display: block;
    }

    .home {
        flex-direction: column;
    }

    .home-img, .home-text {
        width: 100%;
    }

    .service-items {
        flex-direction: column;
    }

    .service-item {
        width: 100%;
    }
    #menu:checked ~ .navbar {
        display: flex;
    }

    .navbar a {
        padding: 10px;
        text-align: center;
        color: white;
        display: block;
    }
}

@media (max-width: 768px) {
    body{
        overflow: auto;
    }
    .nav {
        padding: 10px 0;
    }

    .hidden-code {
        top: 88px;
        left: calc(100% - 400px);
        transform: translateX(-50%);
    }

    .home h1 {
        font-size: 1.5rem;
    }

    .home p {
        font-size: 0.875rem;
    }

    .marquee{
        margin:0;
        padding: 0;
    }
    
    .footer .row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer .footer-col {
        margin-bottom: 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer .footer-col ul {
        padding: 0;
        margin: 0;
    }

    .footer .footer-col ul li {
        margin-bottom: 10px;
    }

    .footer .footer-col h4 {
        text-align: center;
    }

    .footer .social-links {
        justify-content: center;
        margin-bottom: 20px;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .newsletter-form input[type="email"] {
        width: 80%;
    }

    .newsletter-form button {
        width: auto;
        margin-top: 10px;
    }
}

@media (max-width: 600px) {
    .container form {
        padding: 10px;
    }
    .container form h1 {
        font-size: 1.5em;
    }
    .container form #button {
        margin-right: 0;
        margin-bottom: 20px;
    }
}
.hidden-code {
    top: 88px;
    left: calc(100% - 325px);
    transform: translateX(-50%);
}

@media (max-width: 576px) {
    .nav {
        padding: 10px;
    }

    .navbar a {
        font-size: 0.8rem;
    }

    .home h1 {
        font-size: 1.25rem;
    }

    .btn {
        padding: 10px 20px;
    }
    .hidden-code {
        top: 65px; 
        left: 50%; 
        transform: translateX(-50%); 
    }

    .service-items {
        display: flex;
        flex-direction: column; 
        align-items: center;
    }

    .service-item {
        width: 90%; 
        margin-bottom: 20px;
    }

    .footer {
        text-align: center; 
    }

    .footer .social-links a {
        margin-right: 10px; 
    }
}
@media (max-width:467px) {
    .box img {
        width: 100%;
    }
    .contact-img img {
        width: 100%;
    }
    .copyright {
        flex-direction: column-reverse;
        text-align: center;
    }
}

.button-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--main-color); 
    color: var(--bg-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.btn:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.15);
}





